home *** CD-ROM | disk | FTP | other *** search
/ CrystalVision Software Se… Wiki Wonder - Wikipedia / CrystalVision Software Services 703: The Wiki Wonder - Wikipedia.iso / juno / jsetup.exe / data1.cab / lib / cis.scp < prev    next >
Encoding:
Text File  |  2001-11-09  |  576 b   |  29 lines

  1. ;
  2. ; This is a script file that establishes a PPP session with CIS
  3. ; This script should work BOTH with Microsoft's scripting DLL and
  4. ; our own, even though we support only a subset of Microsoft's
  5. ; scripting language. It should also work with the crippled earlier
  6. ; version of MS's scripting DLL
  7. ;    Main entry point to script
  8. ;
  9.  
  10. proc main
  11.  
  12.    delay  1
  13.    transmit "<cr>"
  14.    delay 1
  15.  
  16.    transmit "+<cr>"
  17.  
  18.    waitfor "Host Name:" 
  19.    transmit $USERID
  20.    transmit "<cr>"
  21.    
  22.    waitfor "Password:" 
  23.  
  24.   transmit $PASSWORD
  25.   transmit "<cr>"
  26.  
  27. endproc
  28.